}
public LastErrorException(int code) {
super(formatMessage(code));
this.errorCode = code;
}
}
}
public LastErrorException(int code) {
this(code, formatMessage(code));
}
protected LastErrorException(int code, String msg) {